home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1999 January: Mac OS SDK / Dev.CD Jan 99 SDK1.toast / Development Kits / Apple Shared Library Manager / ASLM Examples / Inspector / Sources / ApplicationCommon.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-11-19  |  654 b   |  28 lines  |  [TEXT/MPS ]

  1. /*
  2.     File:        ApplicationCommon.h
  3.  
  4.     Contains:    Stuff common to Application.h and Application.r
  5.  
  6.     Copyright:    © 1991-1993 by Apple Computer, Inc., all rights reserved.
  7.  
  8. */
  9.  
  10. #ifndef __APPLICATIONCOMMON__
  11. #define __APPLICATIONCOMMON__
  12.  
  13. /*
  14.     These definitions are shared by Rez and C++. We use #define statements
  15.     instead of constants in this file because Rez doesn't support constants.
  16.  */
  17.  
  18. /* Some constants for resource ID's */
  19. #define kApplicationErrStrings    128        /* error string list */
  20.  
  21. /* The following are indicies into our error STR# resource. */
  22. #define    eWrongMachine            1
  23. #define    eSmallSize                2
  24.  
  25. #define    rUserAlert    129                    /* user error alert */
  26.  
  27. #endif
  28.